1 package com.iluwatar;
2
3 /**
4 *
5 * Spell strategy.
6 *
7 */
8 public class SpellStrategy implements DragonSlayingStrategy {
9
10 @Override
11 public void execute() {
12 System.out
13 .println("You cast the spell of disintegration and the dragon vaporizes in a pile of dust!");
14 }
15
16 }